
        /* ============================================
           HOMEPAGE STYLES - دبیرستان پلیس
           ============================================ */
        
        /* Vazir - فونت اصلی */
        @font-face {
            font-family: 'Vazir';
            src: url('../fonts/Vazir.woff2') format('woff2'),
                 url('../fonts/Vazir.woff') format('woff'),
                 url('../fonts/Vazir.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        
        /* Shabnam - فونت دوم (برای قرآن) */
        @font-face {
            font-family: 'Shabnam';
            src: url('../fonts/Shabnam.woff2') format('woff2'),
                 url('../fonts/Shabnam.woff') format('woff'),
                 url('../fonts/Shabnam.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
            font-display: swap;
        }
        
        /* CSS VARIABLES & RESET - رنگ‌های سایت شما */
        :root {
            --primary: #2563eb;
            --primary-dark: #1d4ed8;
            --primary-light: #3b82f6;
            --secondary: #f59e0b;
            --secondary-dark: #d97706;
            --accent: #10b981;
            --danger: #ef4444;
            --dark: #0f172a;
            --gray: #64748b;
            --light: #f8fafc;
            --cream: #fffbeb;
            --white: #ffffff;
            --gradient-primary: linear-gradient(135deg, #2563eb, #1d4ed8);
            --gradient-secondary: linear-gradient(135deg, #f59e0b, #d97706);
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }
        
        body {
            font-family: 'Vazir', system-ui, sans-serif;
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
            direction: rtl;
            overflow-x: hidden;
            user-select: none;
            -webkit-user-select: none;
        }
        
        /* اسکرول بار اختصاصی */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #e2e8f0;
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }
        
        button {
            cursor: pointer;
            font-family: inherit;
            border: none;
            background: none;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }
        @media (min-width: 640px) { .container { padding: 0 1.5rem; } }
        @media (min-width: 1024px) { .container { padding: 0 2rem; } }
        
        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.625rem;
            padding: 0.875rem 2rem;
            border-radius: 9999px;
            font-weight: 600;
            transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            border: none;
            font-size: 0.9375rem;
            position: relative;
            overflow: hidden;
        }
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
            transition: left 0.5s;
        }
        .btn:hover::before { left: 100%; }
        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(37,99,235,0.35);
        }
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(37,99,235,0.45);
        }
        .btn-secondary {
            background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
            color: white;
            box-shadow: 0 4px 15px rgba(245,158,11,0.35);
        }
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(245,158,11,0.45);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* TOP BAR */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
            color: white;
            padding: 0.75rem 0;
            font-size: 0.8125rem;
            position: relative;
            overflow: hidden;
        }
        .top-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
            animation: shimmer 3s infinite;
        }
        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 0.75rem;
            position: relative;
            z-index: 1;
        }
        .top-bar-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .top-bar-info a {
            color: white;
            transition: color 0.3s;
        }
        .top-bar-info a:hover { color: var(--secondary); }
        .top-bar-btn {
            background: rgba(255,255,255,0.15);
            padding: 0.5rem 1.25rem;
            border-radius: 9999px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s;
        }
        .top-bar-btn:hover {
            background: rgba(255,255,255,0.25);
            transform: translateY(-2px);
        }
        @media (max-width: 640px) {
            .top-bar-info .hidden-mobile { display: none; }
        }
        
        /* HEADER */
        .main-header {
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(20px) saturate(180%);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.06);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s;
            border-bottom: 1px solid rgba(255,255,255,0.3);
        }
        .main-header.scrolled {
            box-shadow: 0 4px 30px rgba(0,0,0,0.1);
            padding: 0.25rem 0;
            background: rgba(255,255,255,0.95);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }
        @media (min-width: 1024px) { .nav-container { height: 90px; } }
        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }
        .logo-icon {
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            transition: all 0.3s;
            box-shadow: var(--shadow-md);
        }
        .logo:hover .logo-icon { transform: rotate(8deg) scale(1.05); }
        .logo-text h1 { font-size: 1.125rem; font-weight: 800; color: var(--dark); line-height: 1.3; }
        .logo-text p { font-size: 0.7rem; color: var(--gray); }
        @media (min-width: 640px) {
            .logo-icon { width: 52px; height: 52px; font-size: 1.75rem; }
            .logo-text h1 { font-size: 1.25rem; }
        }
        .desktop-nav { display: none; }
        @media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; gap: 2rem; } }
        .nav-link {
            color: var(--dark);
            font-weight: 600;
            font-size: 0.9375rem;
            padding: 0.5rem 0;
            position: relative;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(to left, var(--primary), var(--secondary));
            transition: width 0.3s;
        }
        .nav-link:hover::after { width: 100%; }
        .nav-link:hover { color: var(--primary); }
        .nav-link.active { color: var(--primary); }
        .has-dropdown { position: relative; }
        .dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            margin-top: 0.75rem;
            background: rgba(255,255,255,0.98);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: var(--shadow-xl);
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px) scale(0.95);
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.05);
        }
        .has-dropdown:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }
        .dropdown a {
            display: block;
            padding: 0.875rem 1.5rem;
            color: var(--dark);
            border-bottom: 1px solid #f0f0f0;
            font-size: 0.875rem;
            font-weight: 500;
        }
        .dropdown a:hover {
            background: #f8fafc;
            color: var(--primary);
            padding-right: 1.75rem;
        }
        .mobile-toggle {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #f1f5f9;
            border-radius: 12px;
            font-size: 1.25rem;
            cursor: pointer;
        }
        .mobile-toggle:hover { background: var(--primary); color: white; }
        @media (min-width: 1024px) { .mobile-toggle { display: none; } }
        .header-actions { display: none; }
        @media (min-width: 640px) { .header-actions { display: flex; gap: 0.75rem; } }
        
        /* Mobile Menu */
        .mobile-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(4px);
            z-index: 200;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }
        .mobile-overlay.active { opacity: 1; visibility: visible; }
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 85%;
            max-width: 360px;
            height: 100vh;
            background: white;
            z-index: 201;
            transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
            overflow-y: auto;
            box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        }
        .mobile-menu.active { right: 0; }
        .mobile-menu-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.25rem;
            background: var(--gradient-primary);
            color: white;
        }
        .mobile-menu-close {
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.2);
            border-radius: 10px;
            color: white;
            font-size: 1.25rem;
        }
        .mobile-nav { padding: 1.25rem; }
        .mobile-nav > a {
            display: block;
            padding: 0.875rem 1rem;
            color: var(--dark);
            border-radius: 12px;
            font-weight: 600;
            margin-bottom: 0.5rem;
            border-right: 3px solid transparent;
        }
        .mobile-nav > a:hover {
            background: #f8fafc;
            color: var(--primary);
            border-right-color: var(--primary);
        }
        .mobile-accordion {
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            margin-bottom: 0.75rem;
            overflow: hidden;
        }
        .mobile-accordion-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.875rem 1rem;
            background: white;
            cursor: pointer;
            font-weight: 600;
        }
        .mobile-accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s;
            background: #f8fafc;
        }
        .mobile-accordion-content.active { max-height: 300px; }
        .mobile-accordion-content a {
            display: block;
            padding: 0.75rem 2rem;
            color: var(--gray);
            font-size: 0.875rem;
            border-top: 1px solid #e2e8f0;
        }
        .btn-full { width: 100%; text-align: center; display: block; }
        
        /* Farsi digits */
        .tizbam-farsi-tnum-digits {
            font-feature-settings: "tnum";
            font-variant-numeric: tabular-nums;
        }
        
        /* ================== صفحه تیزهوشان ================== */
        .honorees-hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 4rem 0;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .honorees-hero::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            top: -150px;
            right: -150px;
        }
        .honorees-hero::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
            bottom: -100px;
            left: -100px;
        }
        .honorees-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            position: relative;
            z-index: 10;
        }
        .honorees-hero p {
            font-size: 1.1rem;
            opacity: 0.9;
            position: relative;
            z-index: 10;
        }
        @media (max-width: 640px) {
            .honorees-hero h1 { font-size: 1.8rem; }
        }
        
        .content-wrapper {
            max-width: 1400px;
            margin: 0 auto;
            padding: 3rem 1.5rem;
        }
        
        /* بخش آمار و هدرها با رنگ‌های سایت شما */
        .stats-header {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            padding: 1rem;
            border-radius: 16px;
            text-align: center;
            font-weight: bold;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-md);
        }
        
        .year-stats {
            background-color: var(--secondary);
            color: var(--dark);
            padding: 1rem;
            border-radius: 16px;
            text-align: center;
            font-weight: bold;
            font-size: 1.4rem;
            max-width: 500px;
            margin: 0 auto 2rem auto;
            box-shadow: var(--shadow-sm);
        }
        
        .info-banner {
            background: linear-gradient(135deg, var(--accent), #0d9488);
            color: white;
            padding: 1rem;
            border-radius: 16px;
            font-weight: bold;
            text-align: center;
            font-size: 1.3rem;
            margin-bottom: 2rem;
            box-shadow: var(--shadow-md);
        }
        
        .cards-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-top: 20px;
        }
        
        /* کارت‌ها با رنگ‌های سفید و آبی سایت شما */
        .honoree-card {
            background: var(--white);
            width: 300px;
            min-height: 450px;
            border-radius: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 16px 12px 20px;
            text-align: center;
            box-shadow: var(--shadow-lg);
            transition: transform 0.2s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        .honoree-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        .honoree-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }
        .honoree-avatar {
            border-radius: 50%;
            margin-top: 20px;
            width: 120px;
            height: 120px;
            object-fit: cover;
            border: 4px solid var(--primary);
            box-shadow: var(--shadow-md);
        }
        .honoree-no-avatar {
            margin-top: 20px;
            margin-bottom: 20px;
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            box-shadow: var(--shadow-md);
        }
        .honoree-name {
            font-size: 1.25rem;
            font-weight: 900;
            margin: 12px 0 8px;
            color: var(--dark);
        }
        .honoree-county, .honoree-school, .honoree-score, .honoree-count {
            font-size: 0.85rem;
            font-weight: 600;
            margin: 6px 20px;
            padding-bottom: 6px;
            border-bottom: 1px solid #e2e8f0;
            width: calc(100% - 40px);
            color: var(--gray);
        }
        .honoree-score, .honoree-count {
            color: var(--primary);
        }
        
        hr {
            margin: 48px 0;
            border: none;
            height: 2px;
            background: linear-gradient(to right, var(--primary-light), transparent);
        }
        
        /* FOOTER */
        .footer {
            background: linear-gradient(180deg, #0f172a, #1a1a2e);
            color: white;
            padding: 4rem 0 2rem;
            margin-top: 3rem;
        }
        .footer-grid {
            display: grid;
            gap: 2rem;
            margin-bottom: 2.5rem;
        }
        @media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
        .footer-brand p { color: #94a3b8; font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
        .footer-links h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            padding-right: 0.75rem;
            border-right: 3px solid var(--primary);
        }
        .footer-links ul {
            list-style: none;
        }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a {
            color: #94a3b8;
            font-size: 0.85rem;
            transition: all 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .footer-links a:hover { color: white; padding-right: 6px; }
        .footer-contact li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.8rem;
            color: #94a3b8;
            font-size: 0.85rem;
        }
        .footer-contact i { color: var(--primary); width: 20px; }
        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 1.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            text-align: center;
        }
        @media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
        .footer-bottom p { color: #64748b; font-size: 0.8rem; }
        .social-links {
            display: flex;
            gap: 0.8rem;
        }
        .social-links a {
            width: 38px;
            height: 38px;
            background: #334155;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            transition: all 0.3s;
        }
        .social-links a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-4px);
        }
        
        /* SCROLL TOP */
        .scroll-top {
            position: fixed;
            bottom: 25px;
            left: 25px;
            width: 48px;
            height: 48px;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s;
            box-shadow: var(--shadow-md);
            z-index: 99;
        }
        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .scroll-top:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
        
        @media (max-width: 768px) {
            .honoree-card { width: 280px; }
            .content-wrapper { padding: 1.5rem; }
        }
